/*  
Theme Name: Aero
Control Name: WebMonthView
Version: 2005.3 Whidbey
Author: Infragistics
Author URI: https://www.infragistics.com/
*/

/*
** Month Frame Oriented Classes
*/
.igmv_Month 
{
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-small;
	position: relative;
	float: left;
	margin: 0px;
	padding: 1px;
	height: auto;
}

.igmv_Month table {
	border-collapse: collapse;
	border-bottom: 1px solid #ccc;
}

/*****************************************
	Ensure CaptionHeader Styling
	----------------------------
	Table Location: first row, first column of table, igmv_CaptionHeader area
	
	Role: overrides igmv_WeekNumber styles that are
	unwanted in the igmv_CaptionHeader area.
	
	Need: igmv_WeekNumber is applied in the first row, first column of the
	table to ensure the WeekNumber width is applied 
	properly to the first column.
******************************************/
tr.igmv_CaptionHeader td.igmv_WeekNumber {
	border: 0px;
	background-color: transparent;
	line-height: 19px;
	height: 1%;
}

.igmv_WeekNumber 
{
	font-size: 8pt;
	font-family: Segoe UI, Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	background-color: #DBE5F3;
	background-position:
	text-align: center;
	color: #8DAED9;

	/* border-top: 1px solid #7C8B8B; */

	width: 17px;
	padding: 0px;
	margin: 0px;
}

.igmv_MonthDayOfWeekHeader 
{
	font-size: 9pt;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	text-transform: uppercase;
	color: #ef3d42;
	font-weight: bold;
	padding: 20px 2px 8px 0px;
	margin-left: 1px;
	margin-right: 1px;
	margin-top: 0px;
	/* overriding border that is set by igmv_WeekNumber */
	border-top: 0px;
	height: 1%;
	line-height: 10px;
	cursor:default;
}


.igmv_CaptionHeader {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 17px;
	text-align: center;
	text-transform: uppercase;
	color: #0060a9;
	border: 0px;
	margin: 0px;
	padding: 0;
}

/*
** Day Oriented Classes
*/
.igmv_Day 
{ 
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
	
	/* this height was set at 12%, but percent heights/widths do not render well in firefox  PBB 8/8/08*/
	/* if the height of the grid changes, recalculate height x .12 and put that value here  PBB 8/8/08 */
	height: 72px;
	
	vertical-align: top;
	cursor:pointer;
	
}

/* added a div rule to .igmv_Day in order to compensate for a difference in how the calendar renders in Chrome and Firefox for multi-day events TSP & WEL 10/10/11 */
.igmv_Day div
{
    height: auto !important;
}

/* compressed day classes are NOT used in this application PBB 8/8/08 */
/*
.igmv_CompressedDay 
{ 
	color: #000000; 

	background-color: #FFFFFF;
	background-image: url(WebSchedule/cellCompressed_bg.png);
	background-repeat: repeat-x;
	background-position: bottom;

	border-left: 1px solid #6593CF;

	height: 4%;
	vertical-align: top;
	cursor:pointer;
}

.igmv_CompressedDay .igmv_ActiveDay {
	background-image: url(WebSchedule/cellCompressedActive_bg.png);
}

.igmv_OtherCompressedDay 
{ 
	color: #000000; 
	background-color: #FFFFFF;

	border-left: 1px solid #6593CF;

	height: 4%;
	vertical-align: top;
	cursor:pointer;
}
*/
/*
** NOTE: OtherMonthDay does not inherit from Day because Day by definition is non-Trailing. 
*/
.igmv_OtherMonthDay 
{ 
	color: #999999;
	background-color: #eeeeee;

	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
	
	/* this height was set at 12%, but percent heights/widths do not render well in firefox  TMS & PBB 11/3/08 */
	/* if the height of the grid changes, recalculate height x .12 and put that value here  TMS & PBB 11/3/08 */
	height: 72px;
	vertical-align: top;
	cursor:pointer;
}

/* added a div rule to .igmv_OtherMonthDay in order to compensate for a difference in how the calendar renders in Chrome and Firefox for multi-day events JMC & TSP 11/17/11 */
.igmv_OtherMonthDay div
{
    height: auto !important;
}

.igmv_Today 
{
color: #fff;
}
.igmv_ActiveDay 
{ 
	background-color: #f6ff00;
	border-top: 0;
	color: #5d5d5d;
}


/*
** DayHeader Oriented Classes.
*/
.igmv_DayHeader 
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight:bold;
	color: #0060a9;
	text-align: right;
	white-space: nowrap;

	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;

	padding: 4px;

	vertical-align: top;
	text-align:left;
	cursor:pointer;
}


/*
** NOTE: OtherMonthDayHeader does not inherit from DayHeader because DayHeader by definition is non-Trailing. 
*/
.igmv_OtherMonthDayHeader 
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight:bold;
	text-align: right;
	white-space: nowrap;
	
	color: #999999;
	background-color: #eeeeee;

	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;

	padding: 4px;

	vertical-align: top;
	text-align:left;
	cursor:pointer;
}
.igmv_TodayHeader 
{
	white-space: nowrap;
	vertical-align: top;	
	border-bottom: 0px;
}

.igmv_ActiveDayHeader 
{
background-color: #F6FF00;
color: #0060A9;
}


/*
** Appointment Oriented Classes
*/
.igmv_Appointment 
{ 
	font-size: xx-small; 
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;

	margin-left: 2px;
	margin-right: 2px;
	margin-top: 1px;
	
	padding-left: 1px;

	line-height: 15px;

	cursor: hand;
}

.igmv_AllDayEvent 
{ 
	font-size: xx-small; 
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;

	margin-left: 2px;
	margin-right: 2px;
	margin-top: 1px;

	padding-left: 1px;

	line-height: 15px;

	cursor: hand;
}

.igmv_SelectedAppointment 
{ 
	font-size: xx-small; 
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;

	margin-left: 2px;
	margin-right: 2px;
	margin-top: 1px;

	padding-left: 1px;

	line-height: 15px;
}

/*
 igmv_NavigationButton is applied to both Previous and Next buttons
*/
.igmv_NavigationButton {
	background-color:Transparent;
	cursor: pointer;
	margin: 0px;
	padding: 0px;
	border: 0px;
	position: absolute;
	top: 3px;
	width: 12px;
}

.igmv_NavigationButtonPrev
{
	left: 3px;
	cursor: pointer;
}

.igmv_NavigationButtonNext
{
	right: 3px;
	cursor: pointer;
}